home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / win_u_z / wt_jan92.zip / LEVARO.ZIP / STATDLL.H < prev    next >
Text File  |  1991-09-27  |  420b  |  16 lines

  1. /*
  2.  * STATDLL.H  This file contains macros and the window proc prototype
  3.  */
  4.  
  5. /* Macros used to access extra bytes                       */
  6.  
  7. #define IS_STYLE_SET(x) ((GetWindowLong( hwnd, GWL_STYLE) & (x)) != 0L)
  8.  
  9. #define ST_WINEXTRA    2
  10. #define ST_HFONT    0
  11.  
  12. #define GET_STFONT    GetWindowWord(hwnd, ST_HFONT)
  13. #define SET_STFONT(x)    SetWindowWord(hwnd, ST_HFONT, (x))
  14.  
  15. LONG FAR PASCAL StaticWndFn(HWND, WORD, WORD, LONG);
  16.